body {
  background-color: rgb(16, 26, 20);
  color: #f0f0f0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: monospace;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  margin-bottom: 20px;
  background-image: url("../images/Images/Forest.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
}

nav {
  text-align: center;
  margin-bottom: 30px;
  background-color: rgb(5, 61, 38);
  width: 100%;
  padding: 20px 0px;
  padding-bottom: 30px;
  background-size: cover;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 30px;
  font-size: 30px;
    transition: color 0.3s ease;
      transition: font-size 0.3s ease;
}

nav a:hover{
  color: #40c55d;
  font-size: 35px;
}
main {
  max-width: 800px;
  margin: auto;
}

section {
  margin-bottom: 40px;
}

footer {
  text-align: center;
  opacity: 0.6;
  font-size: 14px;
  background-color: rgb(82, 104, 104);
  padding-bottom: 10px;

  -webkit-mask-image: linear-gradient(
    to top,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    black 70%,
    transparent 100%
  );
}
.End{
  margin-top: 50px;
  padding-top: 50px;
}

 .Privacy-Policy:hover{
  font-size: 16px;
  color: black;
}
 .Privacy-Policy{
  font-size: 15px;
  color: white;
  transition: color 0.2s ease;
      transition: font-size 0.2s ease;
}
.Details h1{
    font-size: 50px;
    text-align: center;
}
.Details img{
    display: block;
    margin: 0 auto;
    width: 300px;
    height: auto;
    
}
.Socials img{
  width: 30px;
  height: auto;
}
.header-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.footer-logo {
  width: 200px;
  max-width: 80%;
  height: auto;
}
.support-me {
  text-align: center;
}

.support-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #29abe0;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.support-btn:hover {
  opacity: 0.85;
}
body {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.loaded {
  opacity: 1;
  transform: translateY(0);
}
/* Base styles already exist, just adding responsive tweaks */

/* Mobile-first adjustments */
@media (max-width: 768px) {
  header img {
    width: 90%;       /* scale header image */
    height: auto;
  }

  nav {
    padding: 15px 0;
    font-size: 18px;
  }
  nav {
    padding-bottom: 50px;
  }
  nav a {
    display: block;       /* stack links */
    margin: 10px 0;
    font-size: 20px;
  }

  .Details h1 {
    font-size: 28px;      /* smaller heading for mobile */
    margin: 20px 0;
  }

  .Details img {
    width: 70%;           /* smaller slime gif */
  }

  footer {
    font-size: 12px;
    padding: 20px 10px;
  }

  .End img {
    width: 150px;
    height: auto;
  }

  .Privacy-Policy {
    font-size: 13px;
  }

  .Privacy-Policy:hover {
    font-size: 14px;
  }

  .Socials img {
    width: 25px;
  }

  body {
    transform: translateY(10px);
  }
}

/* Very small screens (phones) */
@media (max-width: 480px) {
  nav a {
    font-size: 16px;
    margin: 8px 0;
  }

  .Details h1 {
    font-size: 22px;
  }

  .Details img {
    width: 80%;
  }

  .End img {
    width: 120px;
  }

  .Socials img {
    width: 20px;
  }
}
